home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00072_Script_72 < prev    next >
Text File  |  1994-06-29  |  440b  |  14 lines

  1. --This handler sends the playback head to 
  2. --the frame marked "stay" when the mouse button is clicked 
  3. --and then released. Becausue this handler is in a frame 
  4. --script, the handler runs when the user clicks 
  5. --anywhere on the stage.
  6.  
  7. --If the handler were in a sprite script or script of cast member,
  8. --the user would need to click directly on the sprite
  9. --for the script to run.
  10.  
  11.  
  12. on mouseup
  13.   go to frame "stay"
  14. end mouseup